class: center, middle, inverse, title-slide .title[ # Business Programming (using Python) ] .author[ ### .font1[.] ] .author[ ### .font110[Zhaohu (Jonathan) Fan] ] .author[ ### .font1[.] ] .author[ ### .font1[.] ] .author[ ### .font70[Information Technology Management] ] .author[ ### .font70[Scheller College of Business] ] .author[ ### .font70[Georgia Institute of Technology] ] .date[ ### .font70[August 22, 2023] ] --- # About Me </br> .pull-left[ </br> <!--- https://slideplayer.com/slide/7417023/ My name is ZhaohuJonathan Fan. I go by JOnathan and I am a ...... --> .center[ <img src="GaTech_Jonathan.png" width="232.8" height="288" > ] ] .pull-right[ </br> </br> .font120[ - Ph.D. in business analytics. - Applied statistician, business practitioner. - Foodie and more.... ] ] --- #Previous experiences with Python </br> </br> -- .font140[ * I have never heard of Python/have heard of Python before, but have never used it. ] -- .font140[ * I have used Python before in a class or at work. ] --- # Main topics </br> </br> .font140[ - Course Introduction ] .font140[ - Introduction to Python ] --- name: course-introduction class: clear, center,middle .font200[ Part 1: Course Introduction ] --- # Course Introduction </br> </br> .font140[ * Canvas page ] -- .font140[ * Syllabus, office hours... ] --- class: clear, center, middle .font200["Life is short (You need Python)." ---Bruce Eckel ] --- name: course-introduction class: clear, center,middle .font200[ Part 2: Introduction to Python ] --- name: course-introduction class: clear, center,middle background-image: url(data:image/png;base64,#python.png) background-size: cover <span style="font-size:300%;color:blue">** What is Python?**</span> --- # **Python** is... </br> .font120[ - A cute snake ] .pull-left[ .center[] ] -- .pull-right[ .center[] ] --- # **Python** is... - **Python** is an interpreted and high-level language. .center[] --- # What is fun fact about **Python**? </br> </br> </br> .pull-left[ .center[]] -- .pull-right[ .font90[ - The origin of its name is inspired by a British comedy series called “Monty Python's Flying Circus”. - It was created in 1991 by **Guido Van Rossum**. - "Short, mysterious and unique."--- **Guido Van Rossum**. ] ] --- class: background-image: url(data:image/png;base64,#top.png) background-size: cover # Top Companies Using Python </br> </br> - <span style="color:white; font-size:200%"> **** </span> --- # How should we program with Python? </br> </br> .font150[[Several ways to program in Python](#W)] + Integrated Development Environment (IDE) - Spyder. + Python Notebooks - Jupyter. + Google Colab Notebooks - the Google Docs of Python Notebooks. .font150[[ We will discuss Google Colab Notebooks](#W)] + [Link to the Google Colab Python notebook (Colab 101)](https://jonathanatuscpsu.github.io/Business-Programming/1A_Introduction_to_Python.html) --- # Google Colab Notebooks </br> </br> </br> </br> .font150[[We will be programming in Google Colab Notebooks](#W)] + Open the Google Colab Python notebook from the link below: + [Link to the Google Colab Python notebook (building a simple trading strategy)](https://colab.research.google.com/drive/1Hxai0VZ5IjsGsqcaf5MDX93yu_NLUo1X?usp=sharing) --- # Python: Hello, world! <!--- Over the years, Python has become increasingly versatile as a coding language. From basic programs such as printing the phrase “Hello world!” to being used in data science and machine learning, more and more Python libraries and applications are being expanded by open-source contributors and used across different industries. --> <!---Python vs. R for Data Science Important notes for Python and R--> .pull-left[ .font180[ .blue[Output] ] .code150[ ```python # Hello, world! ``` ] ] .pull-right[ .font180[ .purple[Code] ] .code120[ ```python *print("Hello, world!") ``` ] ]